home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Tools 2
/
Amiga Tools 2.iso
/
s
/
ep_songend-toggle.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
208b
|
16 lines
/* EaglePlayer - toggles Songend */
address 'rexx_EP'
options results
status G end
if result == "no" then do
Songend yes
say "SongEnd is now on !"
end
else do
Songend no
say "SongEnd is now off !"
end